home *** CD-ROM | disk | FTP | other *** search
- /*
- * This file is part of a Macintosh port of GNU Emacs.
- * Copyright (C) 1993, 1994 Marc Parmet. All rights reserved.
- *
- * GNU Emacs is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- */
-
- #ifndef __PWD__
- #define __PWD__
-
- #include "sys/types.h"
-
- struct passwd {
- char *pw_name;
- uid_t pw_uid;
- char *pw_dir;
- };
-
- struct passwd *getpwuid(uid_t uid);
- struct passwd *getpwnam(char *name);
-
- #endif
-